.carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;
    width: 100% !important;
    height: 4rem !important;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    background-color: green;
}

.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: auto !important;
    /* bottom: -80px !important; */
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
    background-color: orange;
    height: fit-content;
}

.carousel-indicators {
    position: absolute;
    height: 40px;
    right: 0;
    top: -40px !important;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}

.carousel-indicators .active {
    opacity: 1 !important;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #1ed324 !important;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}